home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / demo / client / ui / loadingGui.gui < prev    next >
Encoding:
Text File  |  2005-11-23  |  2.2 KB  |  85 lines

  1. new GuiControlProfile ("LoadingGuiContentProfile")
  2. {
  3.    opaque = true;
  4.    fillColor = "200 200 200";
  5.    border = true;
  6.    borderColor   = "0 0 0";
  7. };
  8.  
  9. //--- OBJECT WRITE BEGIN ---
  10. new GuiChunkedBitmapCtrl(LoadingGui) {
  11.    profile = "GuiContentProfile";
  12.    horizSizing = "width";
  13.    vertSizing = "height";
  14.    position = "0 0";
  15.    extent = "640 480";
  16.    minExtent = "8 8";
  17.    visible = "1";
  18.    helpTag = "0";
  19.    bitmap = "./background";
  20.    useVariable = "0";
  21.    tile = "0";
  22.       qLineCount = "0";
  23.  
  24.    new GuiControl() {
  25.       profile = "GuiBevelLoweredProfile";
  26.       horizSizing = "center";
  27.       vertSizing = "center";
  28.       position = "80 80";
  29.       extent = "480 320";
  30.       minExtent = "8 8";
  31.       visible = "1";
  32.       helpTag = "0";
  33.  
  34.       new GuiTextCtrl(LOAD_MapName) {
  35.          profile = "GuiMediumTextProfile";
  36.          horizSizing = "right";
  37.          vertSizing = "bottom";
  38.          position = "22 26";
  39.          extent = "100 28";
  40.          minExtent = "8 8";
  41.          visible = "1";
  42.          helpTag = "0";
  43.          text = "Map Name";
  44.          maxLength = "255";
  45.       };
  46.       new GuiMLTextCtrl(LOAD_MapDescription) {
  47.          profile = "GuiMLTextProfile";
  48.          horizSizing = "right";
  49.          vertSizing = "bottom";
  50.          position = "22 82";
  51.          extent = "440 14";
  52.          minExtent = "8 8";
  53.          visible = "1";
  54.          helpTag = "0";
  55.          lineSpacing = "2";
  56.          allowColorChars = "0";
  57.          maxChars = "-1";
  58.       };
  59.       new GuiProgressCtrl(LoadingProgress) {
  60.          profile = "GuiProgressProfile";
  61.          horizSizing = "right";
  62.          vertSizing = "bottom";
  63.          position = "19 278";
  64.          extent = "442 25";
  65.          minExtent = "8 8";
  66.          visible = "1";
  67.          helpTag = "0";
  68.  
  69.          new GuiTextCtrl(LoadingProgressTxt) {
  70.             profile = "GuiProgressTextProfile";
  71.             horizSizing = "right";
  72.             vertSizing = "bottom";
  73.             position = "-1 3";
  74.             extent = "441 20";
  75.             minExtent = "8 8";
  76.             visible = "1";
  77.             helpTag = "0";
  78.             text = "LOADING MISSION";
  79.             maxLength = "255";
  80.          };
  81.       };
  82.    };
  83. };
  84. //--- OBJECT WRITE END ---
  85.